home *** CD-ROM | disk | FTP | other *** search
/ Strategy Companion / Strategy Companion CD.iso / quinta / install.bat next >
DOS Batch File  |  1995-02-13  |  795b  |  31 lines

  1. @echo off
  2. cls
  3. if not "%1" =="" goto param
  4. echo           Quinta will run from the floppy by entering
  5. echo           A:QUINTA or by substituting another letter
  6. echo           for your floppy drive.  Otherwise it will be
  7. echo           installed on your hard drive in a subdirectory
  8. echo           called C:\QUINTA.
  9. echo.
  10. echo           If you want to install on a drive other than
  11. echo           C: press CONTROL C now and restart INSTALL
  12. echo           with the drive letter after the INSTALL
  13. echo           command.  For example INSTALL D will install
  14. echo           the program on D:\QUINTA.
  15. echo.
  16. pause
  17.  
  18. md c:\quinta
  19. copy quinta.exe c:\quinta
  20. copy quinta.doc c:\quinta
  21. goto end
  22.  
  23. :param
  24. md %1:\quinta
  25. copy quinta.exe %1:\quinta
  26. copy quinta.doc %1:\quinta
  27.  
  28. :end
  29.  
  30.  
  31.